home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / network / samba / patches / samba-1.009 / samba-1
Text File  |  1996-06-05  |  3KB  |  98 lines

  1. diff -u -r --new-file --exclude=CVS samba-1.9.16alpha6/source/.cvsignore samba-1.9.16alpha7/source/.cvsignore
  2. --- samba-1.9.16alpha6/source/.cvsignore    Sat Jun  1 01:15:11 1996
  3. +++ samba-1.9.16alpha7/source/.cvsignore    Thu Jun  6 10:29:27 1996
  4. @@ -1,4 +1,5 @@
  5.  makefile
  6. +makefile.sunos5
  7.  nmbd
  8.  nmblookup
  9.  smbclient
  10. diff -u -r --new-file --exclude=CVS samba-1.9.16alpha6/source/cvs.log samba-1.9.16alpha7/source/cvs.log
  11. --- samba-1.9.16alpha6/source/cvs.log    Thu Jun  6 01:46:54 1996
  12. +++ samba-1.9.16alpha7/source/cvs.log    Thu Jun  6 10:30:35 1996
  13. @@ -1191,3 +1191,45 @@
  14.  Log Message:
  15.  preparing for release of 1.9.16alpha6
  16.  
  17. +
  18. +****************************************
  19. +Date:    Thursday June 6, 1996 @ 10:28
  20. +Author:    tridge
  21. +
  22. +Update of /data/cvs/samba/source
  23. +In directory arvidsjaur:/data/tridge/samba/source
  24. +
  25. +Modified Files:
  26. +    .cvsignore 
  27. +Log Message:
  28. +add sunos private makefile to .ignore
  29. +
  30. +
  31. +
  32. +****************************************
  33. +Date:    Thursday June 6, 1996 @ 10:29
  34. +Author:    tridge
  35. +
  36. +Update of /data/cvs/samba/source
  37. +In directory arvidsjaur:/data/tridge/samba/source
  38. +
  39. +Modified Files:
  40. +    namedb.c proto.h 
  41. +Log Message:
  42. +fix a bug that meant alpha6 couldn't compile. 
  43. +
  44. +
  45. +
  46. +
  47. +****************************************
  48. +Date:    Thursday June 6, 1996 @ 10:30
  49. +Author:    samba-bu
  50. +
  51. +Update of /data/cvs/samba/source
  52. +In directory arvidsjaur:/samba/samba-bugs/samba/source
  53. +
  54. +Modified Files:
  55. +    version.h 
  56. +Log Message:
  57. +preparing for release of 1.9.16alpha7
  58. +
  59. diff -u -r --new-file --exclude=CVS samba-1.9.16alpha6/source/namedb.c samba-1.9.16alpha7/source/namedb.c
  60. --- samba-1.9.16alpha6/source/namedb.c    Thu Jun  6 01:44:17 1996
  61. +++ samba-1.9.16alpha7/source/namedb.c    Thu Jun  6 10:29:27 1996
  62. @@ -379,7 +379,7 @@
  63.  /****************************************************************************
  64.    dump a copy of the workgroup/domain database
  65.    **************************************************************************/
  66. -static void dump_workgroups(void)
  67. +void dump_workgroups(void)
  68.  {
  69.    struct domain_record *d;
  70.    
  71. diff -u -r --new-file --exclude=CVS samba-1.9.16alpha6/source/proto.h samba-1.9.16alpha7/source/proto.h
  72. --- samba-1.9.16alpha6/source/proto.h    Thu Jun  6 01:44:17 1996
  73. +++ samba-1.9.16alpha7/source/proto.h    Thu Jun  6 10:29:27 1996
  74. @@ -111,6 +111,7 @@
  75.  void expire_browse_cache(time_t t);
  76.  struct work_record *find_workgroupstruct(struct domain_record *d, fstring name, BOOL add);
  77.  struct domain_record *find_domain(struct in_addr source_ip);
  78. +void dump_workgroups(void);
  79.  struct domain_record *add_domain_entry(struct in_addr source_ip, 
  80.                         struct in_addr source_mask,
  81.                         char *name, BOOL add);
  82. @@ -142,7 +143,8 @@
  83.                struct nmb_name *rr_name,int rr_type,int rr_class,int ttl,
  84.                char *data,int len);
  85.  uint16 initiate_netbios_packet(int fd,int quest_type,char *name,int name_type,
  86. -                   int nb_flags,BOOL bcast,BOOL recurse,struct in_addr to_ip);
  87. +                   int nb_flags,BOOL bcast,BOOL recurse,
  88. +                   struct in_addr to_ip);
  89.  void queue_netbios_pkt_wins(int fd,int quest_type,enum cmd_type cmd,
  90.                  char *name,int name_type,int nb_flags,
  91.                  BOOL bcast,BOOL recurse,struct in_addr to_ip);
  92. diff -u -r --new-file --exclude=CVS samba-1.9.16alpha6/source/version.h samba-1.9.16alpha7/source/version.h
  93. --- samba-1.9.16alpha6/source/version.h    Thu Jun  6 01:46:14 1996
  94. +++ samba-1.9.16alpha7/source/version.h    Thu Jun  6 10:29:53 1996
  95. @@ -1 +1 @@
  96. -#define VERSION "1.9.16alpha6"
  97. +#define VERSION "1.9.16alpha7"
  98.